{% extends "base.html" %} {% block title %}Court Management — Admin{% endblock %} {% block content %}

Court Management

Schedule virtual hearings and track court filings

Court Filings
{% if filings %} {% for f in filings %}
{{ f.filing_number }} {{ f.status.title() }}
{{ f.court_type }}, {{ f.court_district }} · Filed {{ f.filing_date.strftime('%d %b %Y') if f.filing_date else '' }}
{% if f.status == 'filed' %}
Schedule Hearing
{% endif %}
{% endfor %} {% else %}
No court filings yet.
{% endif %}
Scheduled Hearings
{% if hearings %} {% for h in hearings %}
{{ h.scheduled_date }} · {{ h.scheduled_time }} {{ h.status.title() }}
{{ h.hearing_type.replace('_',' ').title() }} · Judge: {{ h.judge_name or 'TBD' }}
{% endfor %} {% else %}
No hearings scheduled yet.
{% endif %}
{% endblock %}